home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 11 / Mac Magazin and MacEasy Magazine CD - Issue 11.iso / Sharewarebibliothek / Entwickler / ThreadLibrary-1.0 / Documentation / README < prev    next >
Text File  |  1995-06-08  |  2KB  |  45 lines

  1. Thread Library is a free library, for use by Macintosh software developers, 
  2. that implements cooperative multiple thread execution within a single 
  3. application. Thread Library
  4.  
  5. -    does not require any extensions;
  6.  
  7. -    should work with all Macintosh models (from the Plus on up);
  8.  
  9. -    works with system 7.x and with system 6.x under Finder or MultiFinder;
  10.  
  11. -    runs in native mode on 680x0 and PowerPC* based Macintoshes;
  12.  
  13. -    compiles into a small library of 3 to 8 kilobytes;
  14.  
  15. -    works with the Symantec, Metrowerks, and MPW compilers.
  16.  
  17. The 680x0 version of Thread Library is 2-3 times faster than Apple's Thread 
  18. Manager. The PowerPC version of Thread Library is about 2 times faster than 
  19. Apple's Thread Manager.
  20.  
  21. Every thread has its own stack, and there are no restrictions on the objects that 
  22. can be allocated on a thread's stack. All other global application data are 
  23. shared by threads. Context switches are very efficient since they involve only 
  24. a few operations to save the current thread's state, followed by a context switch 
  25. to the new thread, and a few instructions to restore the new thread's state. 
  26. This distribution includes:
  27.  
  28. -    complete source code in C;
  29.  
  30. -    detailed documentation in Microsoft Word 5.0 format;
  31.  
  32. -    prebuilt libraries for 68K and PowerPC programs, including debug 
  33. versions of the libraries;
  34.  
  35. -    a new interface that mimics Apple's Thread Manager;
  36.  
  37. -    a simple test application that demonstrates how threads may be used;
  38.  
  39. -    an application that compares the speed of Thread Library with the 
  40. speed of Apple's Thread Manager;
  41.  
  42. -    Metrowerks CodeWarrior project files;
  43.  
  44. -    AppleScript program for automatic builds.
  45.